home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-29 | 489 bĀ | 26 lines | [TEXT/CWIE] |
- // AMReminderApp.h -- application-level functions
-
- #pragma once
-
- #include "AMApp.h"
-
- //----------
- struct AMReminderApp {
- AMApp super;
- };
- typedef struct AMReminderApp AMReminderApp;
-
- //----------
- AMReminderApp* NewAMReminderApp ();
-
- //----------
- void AMReminderApp_Init (AMReminderApp* self);
- void AMReminderApp_Free (AMReminderApp* self);
-
- void OpenApp (AMApp* self);
- Boolean DoAppCommand (AMApp* self,
- long inCommand);
- //protected:
- AMDoc* MakeDoc (AMApp* self);
-
-